Get Account Internal Transactions
GET/api/v1/accounts/:accountAddress/internal-transactions
PRO_PLUS [20 Credits]
Retrieve a list of internal transactions for an account.
Request
Path Parameters
accountAddress stringrequired
account address
Query Parameters
blockNumberStart int64
start-number of block-range
blockNumberEnd int64
end-number of block-range
page int32
Possible values: >= 1
Results page you want to retrieve (1..N)
Example: 1
size int32
Number of records per page, min: 1, Max: 2000
Example: 20
Responses
- 200
OK
- */*
- Schema
- Example (from schema)
Schema
Array [
]
results
object[]
required
callId int32required
blockId int64required
transactionHash Transaction Hash (string)
transactionIndex int32required
feePayer Fee Payer (string)
datetime date-time
type Type (string)required
Example:
CALL,CREATE
from Address (from) (string)required
to Address (to) (string)
amount KLAY Amount Transferred (number)required
error Error Information (string)
methodId Function Bytes (string)
signature Function Name (string)
transactionStatus
object
status Transaction Status (string)required
Possible values: [Success
, Fail
]
failMessage Message when Transaction Status is Fail (string)
paging
object
required
totalCount int64required
currentPage int32required
last booleanrequired
totalPage int32required
property
object
property name* object
{
"results": [
{
"callId": 0,
"blockId": 0,
"transactionHash": "string",
"transactionIndex": 0,
"feePayer": "string",
"datetime": "2025-01-17T12:41:59.748Z",
"type": "CALL,CREATE",
"from": "string",
"to": "string",
"amount": 0,
"error": "string",
"methodId": "string",
"signature": "string",
"transactionStatus": {
"status": "Success",
"failMessage": "string"
}
}
],
"paging": {
"totalCount": 0,
"currentPage": 0,
"last": true,
"totalPage": 0
},
"property": {}
}
Loading...